home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / admin / snmp-dev.000 / snmp-dev / etc / Makefile.in < prev    next >
Encoding:
Makefile  |  1995-01-15  |  373 b   |  20 lines

  1.  
  2. FILES = snmpd.conf acl.conf context.conf party.conf view.conf
  3.  
  4. all:
  5.     @/bin/true
  6.  
  7. install:
  8.     @for f in $(FILES) ; do \
  9.       if [ ! -f /etc/$$f ] ; then \
  10.         echo cp $$f /etc ; \
  11.         cp $$f /etc ; \
  12.       else \
  13.         echo /etc/$$f exists - not copied. ; \
  14.           fi ; \
  15.     done
  16.     @echo 'Please Note: You may wish to run etc/installconf to install a V2 useable set.'
  17.  
  18. clean:
  19.     @/bin/true
  20.